home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue28 / subclass / app1main.dfm / app1main.txt
Encoding:
Text File  |  1997-09-08  |  697 b   |  36 lines

  1. object MyForm: TMyForm
  2.   Left = 200
  3.   Top = 108
  4.   Width = 446
  5.   Height = 303
  6.   Caption = 'MyForm'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   OnDestroy = FormDestroy
  14.   OnMouseDown = FormMouseDown
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Button1: TButton
  18.     Left = 16
  19.     Top = 40
  20.     Width = 201
  21.     Height = 25
  22.     Caption = 'MouseDown Event Disabled'
  23.     TabOrder = 0
  24.     OnClick = Button1Click
  25.   end
  26.   object Button2: TButton
  27.     Left = 24
  28.     Top = 104
  29.     Width = 121
  30.     Height = 25
  31.     Caption = 'Alternate Subclass'
  32.     TabOrder = 1
  33.     OnClick = Button2Click
  34.   end
  35. end
  36.